home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / mslang / oew / readme.txt < prev    next >
Encoding:
Text File  |  1994-03-28  |  2.4 KB  |  76 lines

  1. (c) Innovative Software GmbH, 1990 - 1994, all rights reserved.
  2.  
  3.  
  4. OEW V1.3 
  5. =======
  6.  
  7. Since the printing of the manual some features have been added to OEW V1.3:
  8.  
  9.  
  10. New features:
  11. -------------
  12.  
  13. Quickhelp: Use <alt>+F1 or the Help/Quickhelp menu item to toggle the
  14.     Quickhelp.
  15.  
  16. F5:     this key doesn`t call the quick reference window anymore, but 
  17.     displays the Query window (call the quickref with Shift+F5). 
  18.     You can use the Query window to quickly acces objectbase elements. 
  19.     As windows always appear behind dialogs, the query window might be 
  20.     obscured. 
  21.  
  22.     In the Query window
  23.     -    select the scope of the search,
  24.         ("Definitions" searches all preprocessor definitions) 
  25.     -    enter a search string,
  26.         (you can use "*" as a wildcard at the end of the string). 
  27.     -    click the Display Result button. OEW displays all matches on 
  28.         the left-hand side of the window. 
  29.     -    Select one of these results. OEW displays the source code 
  30.         that will be generated for this element (you can select this
  31.         text and copy it to the clipboard).
  32.     -    Alternatively, you can double-click one of the search 
  33.         results to edit this objectbase element.
  34.  
  35.  
  36. F11:     in an editor entry field or an editor window opened with an Editor 
  37.     button, this key opens the dialog of the objectbase element under
  38.     the cursor. If there are multiple elements of this name (e.g. a
  39.     class and its constructor), you can select which you want to edit.
  40.  
  41.  
  42. Non-modal dialogs: many of OEW`s dialogs can be left open while editing 
  43.     another element.  
  44.  
  45.  
  46. Parser: OEW can recognize #include blockers:
  47.     -    in header files:
  48.         #ifndef INCLUDE_BLOCKER
  49.         #define INCLUDE_BLOCKER
  50.         <header file>
  51.         #endif
  52.         OEW enters these #include blockers into the module
  53.         definition.
  54.  
  55.     -    in include statements
  56.         #ifndef INCLUDE_BLOCKER
  57.         #include include_filename
  58.         #endif
  59.  
  60.         if there is no module in the objectbase with the filename 
  61.         include_filename and the #include blocker INCLUDE_BLOCKER,
  62.         OEW cannot recognize the statements. You either have to
  63.         activate "Import all" or "Execute #includes" in the import 
  64.         dialog, or pre-define modules with the appropriate #include 
  65.         blockers before parsing. 
  66.  
  67.         When parsing, OEW does not enter the #include blockers into 
  68.         a module as it generates them automatically.
  69.  
  70.  
  71. Known manual errata:
  72. --------------------
  73.  
  74. You cannot paste global datatypes and classes from the clipboard into a 
  75. class.
  76.